//Instructions:
//Christmas Eve is almost upon us, so naturally we need to prepare some milk and cookies for Santa! 
//Create a function that accepts a Date object and returns true if it's Christmas Eve (December 24th) and false otherwise.

public class Program
{
    public static bool TimeForMilkAndCookies(int year, int month, int day)
    {
      return (month == 12 && day == 24) ? true : false;
    }
}
